'Declaration
Public Function New( _ ByVal state As Object, _ ByVal exception As Exception, _ ByVal vtq As DAVtq(Of TValue) _ )
'Usage
Dim state As Object Dim exception As Exception Dim vtq As DAVtq(Of TValue) Dim instance As New DAVtqResult(Of TValue)(state, exception, vtq)
public: DAVtqResult<TValue>( Object^ state, Exception^ exception, DAVtq<TValue^>^ vtq )
Parameters
- state
- The state object specified when the operation was invoked.
The value of this parameter can be
null
(Nothing
in Visual Basic). - exception
- The reason of the failure of the operation.
The value of this parameter can be
null
(Nothing
in Visual Basic). - vtq
- The typed DAVtq<TValue> (value, timestamp and quality) that is a successful result of the operation.
The value of this parameter can be
null
(Nothing
in Visual Basic).